﻿;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; MOBILIZATION #3 (Based on a set date and variable political conditions)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; USAGE:
;
; Basic structure for a mobilization event:
; {
; #NAME= Event name (this will be shown as a selectable event under an OPTIONS screen within the game)
; #POPUP= Event popup text (this will be displayed when the event occurs)
; #IMAGE= Event image that will be displayed when event occurs
;         PNG images must be 736x418 or 368x418 pixels, see 'Extras' folder for sample images and frames
;         Multiple pictures can be used by using a ',' to separate them
;         Format: picture1.png, picture2.png, picture3.png, picture4.png
; #SOUND= Event sound that will be displayed when event occurs
;         Multiple sounds can be used by using a ',' to separate them
;         Format: sound1.mp3, sound2.mp3, sound3.mp3, sound4.mp3
; #FLAG= Will this be a default event for the campaign? (values range [0, 1]; True= 1; False= 0)
; #TYPE= Values range [0, 3];
;        With all other fields satisfied will this be:
;        0 = Single check regardless if #TRIGGER is satisfied
;        1 = Multiple check until #TRIGGER is satisfied
;        2 = Reoccuring check until end of game
;                       OR
;        Once the #DATE field is satisfied:
;        3 = Event fires once if all other fields are satisfied, else it will not fire.  Either way, event will be removed never to be looked at again
; #AI= Values range [0, 4]
; 0 = Event fires whenever all fields are satisfied for any game type
; 1 = Event fires whenever all fields are satisfied, for Single Player games only, and only when the AI is Axis
; 2 = Event fires whenever all fields are satisfied, for Single Player games only, and only when the AI is Allied
; 3 = Event fires whenever all fields are satisfied, for any game type, and only when the AI is Axis in Single Player, or on Allied Multiplayer turns
; 4 = Event fires whenever all fields are satisfied, for any game type, and only when the AI is Allied in Single Player, or on Axis Multiplayer turns
; #LEVEL= What minimum skill level, as selected from the AI difficulty level screen in game, with this event apply to?
;         Values: [0, 4]; Green= 0; Novice= 1; Intermediate= 2; Veteran= 3; Expert= 4
; #GV= Does the event activate based on the Global Variable values assigned?
;      Ten random Global Variables are assigned at the start of the campaign each with a value between [1,100]
;      Format: GV [min, max]; GV range [1,10]; min range [1,100]; max range [1,100]
;      Example A) #GV= 1[1,100] will always trigger because Global Variable #1 will always have a value between [1,100]
;      Example B) #GV= 4[71,100] will trigger 30% per game
; #LINK= Does the event activate based on the Link values assigned?
;        A campaign can have up to 1100 Decision events and is referenced by other events via this parameter
;        Format: decision[flag]; flag range [0, 1]; True= 1; False= 0
;        Example A) #LINK= 0[0] will always trigger as formal DECISION events can only be from 1-1100
;        Example B) #LINK= 1[0] will trigger whenever #DECISION= 1 is not accepted
;        Example C) #LINK= 3[1] will trigger whenever #DECISION= 3 is accepted
; #TRIGGER= Trigger percentage that the event will occur (values range [0, 100])
; #COUNTRY_ID= Country ID associated with this event
; #DATE= Date that must be satisfied (in game) for event to occur (format yyyy/mm/dd)
; #MOBILIZATION= The mobilization percentage increase/decrease for this event for #COUNTRY_ID
;                Format: [min%, max%] [political_direction]
; #VARIABLE_CONDITION= Under what variable conditions will this event occur
;                      Format: country_id [political_alignment] [mobilization%] [surrendered_flag]
; }
;
; NOTES:
;
; Each event must be preceded by a '{' and end with a '}'
;
; The #MOBILIZATION value can be set to reflect a random range of potential increase or decrease
; towards either the Axis or Allies side. This is done by setting the 'political_direction' flag
; under #MOBILIZATION as either Axis or Allied, i.e. [1] or [2]. For example if the US is currently
; leaning towards the Allies then you can set an #MOBILIZATION event to decrease their current
; mobilization percentage by setting the 'political_direction' flag as Axis.
;
; Under #VARIABLE_CONDITION you can also list countries that have not yet fully entered the war.
; For example by listing an mobilization % less than 100% you are providing a check where the
; #VARIABLE_CONDITION country must meet a minimum mobilization % in order for the event to occur.
;
; More than one #VARIABLE_CONDITION can be set. Each #VARIABLE_CONDITION line will be read using
; AND logic.
;
; Use the reference values provided for #COUNTRY_ID and not the country names
; Use the reference values provided for POLITICAL ALIGNMENT and not names
; Use the reference values provided for SURRENDER flags and not names
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; COUNTRY ID REFERENCE VALUES
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Country IDs
; #COUNTRY_ID_0= Neutral
; #COUNTRY_ID_1= Armenia
; #COUNTRY_ID_2= Afghanistan
; #COUNTRY_ID_3= Albania
; #COUNTRY_ID_4= Algeria
; #COUNTRY_ID_5= Arabia
; #COUNTRY_ID_6= Australia
; #COUNTRY_ID_7= Austria
; #COUNTRY_ID_8= Austria-Hungary
; #COUNTRY_ID_9= Baltic Duchy
; #COUNTRY_ID_10= Belgium
; #COUNTRY_ID_11= Belarus
; #COUNTRY_ID_12= Basmachi
; #COUNTRY_ID_13= Black
; #COUNTRY_ID_14= Bolivia
; #COUNTRY_ID_15= Borneo
; #COUNTRY_ID_16= Brazil
; #COUNTRY_ID_17= British Somaliland
; #COUNTRY_ID_18= Brunei
; #COUNTRY_ID_19= Bulgaria
; #COUNTRY_ID_20= Burma
; #COUNTRY_ID_21= Canada
; #COUNTRY_ID_22= Chile
; #COUNTRY_ID_23= China
; #COUNTRY_ID_24= Colombia
; #COUNTRY_ID_25= Crimean People's Republic
; #COUNTRY_ID_26= Costa Rica
; #COUNTRY_ID_27= Croatia
; #COUNTRY_ID_28= Cuba
; #COUNTRY_ID_29= Curaçao
; #COUNTRY_ID_30= Czechoslovakia
; #COUNTRY_ID_31= Denmark
; #COUNTRY_ID_32= Don Republic
; #COUNTRY_ID_33= Dutch East Indies
; #COUNTRY_ID_34= Dutch Guiana
; #COUNTRY_ID_35= Ecuador
; #COUNTRY_ID_36= Egypt
; #COUNTRY_ID_37= El Salvador
; #COUNTRY_ID_38= Estonia
; #COUNTRY_ID_39= Finland
; #COUNTRY_ID_40= France
; #COUNTRY_ID_41= Free City of Danzig
; #COUNTRY_ID_42= French Equatorial Africa
; #COUNTRY_ID_43= French Somaliland
; #COUNTRY_ID_44= French West Africa
; #COUNTRY_ID_45= Germany
; #COUNTRY_ID_46= Greece
; #COUNTRY_ID_47= Greenland
; #COUNTRY_ID_48= Guatemala
; #COUNTRY_ID_49= Haiti
; #COUNTRY_ID_50= Honduras
; #COUNTRY_ID_51= Hong Kong
; #COUNTRY_ID_52= Hungary
; #COUNTRY_ID_53= Iceland
; #COUNTRY_ID_54= India
; #COUNTRY_ID_55= Indochina
; #COUNTRY_ID_56= Mesopotamia
; #COUNTRY_ID_57= Ireland
; #COUNTRY_ID_58= Italian East Africa
; #COUNTRY_ID_59= Italy
; #COUNTRY_ID_60= Japan
; #COUNTRY_ID_61= Latvia
; #COUNTRY_ID_62= Liberia
; #COUNTRY_ID_63= Libya
; #COUNTRY_ID_64= Lithuania
; #COUNTRY_ID_65= Luxembourg
; #COUNTRY_ID_66= Malaya
; #COUNTRY_ID_67= Kazan
; #COUNTRY_ID_68= Mexico
; #COUNTRY_ID_69= Mongolia
; #COUNTRY_ID_70= Morocco
; #COUNTRY_ID_71= Kuban People's Republic
; #COUNTRY_ID_72= Nepal
; #COUNTRY_ID_73= Netherlands
; #COUNTRY_ID_74= New Zealand
; #COUNTRY_ID_75= Newfoundland
; #COUNTRY_ID_76= Nicaragua
; #COUNTRY_ID_77= Northern Caucasus
; #COUNTRY_ID_78= Norway
; #COUNTRY_ID_79= Palestine
; #COUNTRY_ID_80= Panama
; #COUNTRY_ID_81= Paraguay
; #COUNTRY_ID_82= Persia
; #COUNTRY_ID_83= Peru
; #COUNTRY_ID_84= Philippines
; #COUNTRY_ID_85= Poland
; #COUNTRY_ID_86= Polynesia
; #COUNTRY_ID_87= Portugal
; #COUNTRY_ID_88= Portuguese East Africa
; #COUNTRY_ID_89= Portuguese Timor
; #COUNTRY_ID_90= Portuguese West Africa
; #COUNTRY_ID_91= Red
; #COUNTRY_ID_92= Rhodesia
; #COUNTRY_ID_93= Romania
; #COUNTRY_ID_94= Serbia
; #COUNTRY_ID_95= Saudi Arabia
; #COUNTRY_ID_96= Slovakia
; #COUNTRY_ID_97= Russia
; #COUNTRY_ID_98= South Africa
; #COUNTRY_ID_99= Spain
; #COUNTRY_ID_100= Spanish Guinea
; #COUNTRY_ID_101= Montenegro
; #COUNTRY_ID_102= Sudan
; #COUNTRY_ID_103= Sweden
; #COUNTRY_ID_104= Switzerland
; #COUNTRY_ID_105= Syria
; #COUNTRY_ID_106= Tannu Tuva
; #COUNTRY_ID_107= Thailand
; #COUNTRY_ID_108= Tibet
; #COUNTRY_ID_109= Transjordan
; #COUNTRY_ID_110= Tunisia
; #COUNTRY_ID_111= Ottoman Empire
; #COUNTRY_ID_112= UK
; #COUNTRY_ID_113= Ukraine
; #COUNTRY_ID_114= Uruguay
; #COUNTRY_ID_115= USA
; #COUNTRY_ID_116= USSR
; #COUNTRY_ID_117= Venezuela
; #COUNTRY_ID_118= Transcaucasian Federation
; #COUNTRY_ID_119= Yemen
; #COUNTRY_ID_120= Yugoslavia
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; POLITICAL ALIGNMENT REFERENCE VALUES
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; NEUTRAL= 0
; AXIS= 1
; ALLIED= 2
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; SURRENDERED FLAG REFERENCE VALUES
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; NOT_SURRENDERED= 0
; SURRENDERED= 1
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


{
#NAME= Switzerland->Central Powers (1915)
#POPUP= <<TAG_1>>
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 604[1]
#COUNTRY_ID= 104
#TRIGGER= 50
#DATE= 1915/07/20
;15-30% mobilization increase towards the Central Powers
#MOBILIZATION= [15,30] [1]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; 2nd Line - Switzerland politically aligned with the Central Powers and not fully mobilized
#VARIABLE_CONDITION= 104 [1] [0] [0]
}

{
#NAME= Ottoman Empire->Central Powers - Seizure Of The Sultan Osman I (1914)
#POPUP= <<TAG_2>>
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 112[1]
#COUNTRY_ID= 111
#TRIGGER= 100
#DATE= 1914/08/08
;10-15% mobilization increase towards the Central Powers
#MOBILIZATION= [10,15] [1]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= Ottoman Empire->Entente (1914)
#POPUP= <<TAG_3>>
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 112[0]
#COUNTRY_ID= 111
#TRIGGER= 100
#DATE= 1914/08/08
;25-35% mobilization increase towards the Entente
#MOBILIZATION= [25,35] [2]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= Ottoman Empire->Central Powers (1) (1914)
#POPUP= <<TAG_4>>
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 0
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 611[1]
#COUNTRY_ID= 111
#TRIGGER= 100
#DATE= 1914/08/17
;8-10% mobilization increase towards the Central Powers
#MOBILIZATION= [8,10] [1]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= Ottoman Empire->Central Powers (2) (1914)
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 0
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 611[1]
#COUNTRY_ID= 111
#TRIGGER= 100
#DATE= 1914/09/01
;7-10% mobilization increase towards the Central Powers
#MOBILIZATION= [7,10] [1]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= Ottoman Empire->Central Powers (1914)
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 0
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 611[1]
#COUNTRY_ID= 111
#TRIGGER= 100
#DATE= 1914/11/01
;15-25% mobilization increase towards the Central Powers
#MOBILIZATION= [15,25] [1]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= Ottoman Empire->Central Powers (1914)
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 0
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 611[1]
#COUNTRY_ID= 111
#TRIGGER= 100
#DATE= 1914/12/01
;15-25% mobilization increase towards the Central Powers
#MOBILIZATION= [15,25] [1]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; SPECIAL EVENT
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= Ottoman Empire->Entente (post surrender)
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 110[1]
#COUNTRY_ID= 111
#TRIGGER= 100
#DATE= 1915/09/01
;100-100% mobilization increase towards the Entente
#MOBILIZATION= [100,100] [2]
;Set variable conditions:
; 1st Line - Ottoman Empire politically aligned with the Central Powers but not fully mobilized
#VARIABLE_CONDITION= 111 [1] [0] [0]
}

{
#NAME= Ottoman Empire->Entente (post surrender)
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 110[0]
#COUNTRY_ID= 111
#TRIGGER= 100
#DATE= 1915/09/01
;100-100% mobilization increase towards the Entente
#MOBILIZATION= [100,100] [2]
;Set variable conditions:
; 1st Line - Ottoman Empire politically aligned with the Central Powers but not fully mobilized
#VARIABLE_CONDITION= 111 [1] [0] [0]
}

{
#NAME= Ottoman Empire->Central Powers (1914)
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 0
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 611[1]
#COUNTRY_ID= 111
#TRIGGER= 100
#DATE= 1915/02/01
;15-25% mobilization increase towards the Central Powers
#MOBILIZATION= [15,25] [1]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= Ottoman Empire->Central Powers (1914)
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 0
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 611[1]
#COUNTRY_ID= 111
#TRIGGER= 100
#DATE= 1915/03/01
;15-25% mobilization increase towards the Central Powers
#MOBILIZATION= [15,25] [1]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= Ottoman Empire->Central Powers (1914)
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 0
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 611[1]
#COUNTRY_ID= 111
#TRIGGER= 100
#DATE= 1915/04/01
;15-25% mobilization increase towards the Central Powers
#MOBILIZATION= [15,25] [1]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= Ottoman Empire->Central Powers (1914)
#POPUP= <<TAG_5>>
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 612[1]
#COUNTRY_ID= 111
#TRIGGER= 100
#DATE= 1914/08/18
;20-30% mobilization increase towards the Central Powers
#MOBILIZATION= [20,30] [1]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= Italy->Central Powers (1915)
#POPUP= <<TAG_6>>
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 704[1]
#COUNTRY_ID= 59
#TRIGGER= 100
#DATE= 1915/01/01
;90-90% mobilization increase towards the Central Powers
#MOBILIZATION= [90,90] [1]
;Set variable conditions:
; 1st Line - Austria-Hungary politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 8 [1] [100] [0]
}

{
#NAME= Romania->Entente (1915)
#POPUP= <<TAG_7>>
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 704[1]
#COUNTRY_ID= 93
#TRIGGER= 100
#DATE= 1915/01/01
;30-40% mobilization increase towards the Entente
#MOBILIZATION= [30,40] [2]
;Set variable conditions:
; 1st Line - Austria-Hungary politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 8 [1] [100] [0]
}

{
#NAME= Romania->Central Powers (Russia Surrendered)
#POPUP=
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#COUNTRY_ID= 93
#TRIGGER= 100
#DATE= 1915/01/01
;30-40% mobilization increase towards the Central Powers
#MOBILIZATION= [30,40] [1]
;Set variable conditions:
; 1st Line - Romania politically aligned with the Entente but not fully mobilized
#VARIABLE_CONDITION= 93 [2] [0] [0]
; 2nd Line - Russia politically aligned with the Entente and surrendered
#VARIABLE_CONDITION= 97 [2] [100] [1]
}

{
#NAME= Romania->Central Powers (Russia Withdraws From The War)
#POPUP=
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#COUNTRY_ID= 93
#TRIGGER= 100
#DATE= 1915/01/01
;30-40% mobilization increase towards the Central Powers
#MOBILIZATION= [30,40] [1]
;Set variable conditions:
; 1st Line - Romania politically aligned with the Entente but not fully mobilized
#VARIABLE_CONDITION= 93 [2] [0] [0]
; 2nd Line - Russia politically aligned with the Entente and surrendered
#VARIABLE_CONDITION= 97 [2] [0] [0]
}

{
#NAME= Italy->Entente (1915)
#POPUP= <<TAG_8>>
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 113[1]
#COUNTRY_ID= 59
#TRIGGER= 100
#DATE= 1915/04/15
;10-15% mobilization increase towards the Entente
#MOBILIZATION= [10,15] [2]
;Set variable conditions:
; 1st Line - UK politically aligned with the Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
}

{
#NAME= Italy->Entente (1914)
#POPUP= <<TAG_9>>
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#COUNTRY_ID= 59
#TRIGGER= 100
#DATE= 1914/12/01
;10-10% mobilization increase towards the Entente
#MOBILIZATION= [10,10] [2]
;Set variable conditions:
; 1st Line - Austria-Hungary politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 8 [1] [100] [0]
; 2nd Line - Italy politically aligned with the Entente but not fully mobilized
#VARIABLE_CONDITION= 59 [2] [0] [0]
}

{
#NAME= Italy->Entente (1915)
#POPUP= <<TAG_10>>
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 2
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 704[0]
#COUNTRY_ID= 59
#TRIGGER= 75
#DATE= 1915/02/01
;10-25% mobilization increase towards the Entente
#MOBILIZATION= [10,25] [2]
;Set variable conditions:
; 1st Line - Austria-Hungary politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 8 [1] [100] [0]
; 2nd Line - Italy politically aligned with the Entente but not fully mobilized
#VARIABLE_CONDITION= 59 [2] [0] [0]
}

{
#NAME= Greece->Entente (1915)
#POPUP= <<TAG_11>>
#IMAGE= Venizelos.png
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 121[1]
#COUNTRY_ID= 46
#TRIGGER= 100
#DATE= 1915/09/01
;100-100% mobilization increase towards the Entente
#MOBILIZATION= [100,100] [2]
;Set variable conditions:
; 1st Line - UK politically aligned with the Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
}

{
#NAME= Greece->Entente (1915)
#POPUP= <<TAG_11>>
#IMAGE= Venizelos.png
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 8[76,100]
;Set link value to always trigger (dummy value)
#LINK= 121[0]
#COUNTRY_ID= 46
#TRIGGER= 100
#DATE= 1915/09/01
;100-100% mobilization increase towards the Entente
#MOBILIZATION= [100,100] [2]
;Set variable conditions:
; 1st Line - UK politically aligned with the Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
}

{
#NAME= Greece->Central Powers (1915)
#POPUP= <<TAG_12>>
#IMAGE= Greekcivilwar.png
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 8[1,75]
;Set link value to always trigger (dummy value)
#LINK= 121[0]
#COUNTRY_ID= 46
#TRIGGER= 100
#DATE= 1915/09/01
;100-100% mobilization increase towards the Central Powers
#MOBILIZATION= [100,100] [1]
;Set variable conditions:
; 1st Line - UK politically aligned with the Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
}

{
#NAME= Spain -> Entente (Discovery Of Ammunition en route to Morocco) DE 605
#POPUP= <<TAG_20>>
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 0
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 605[1]
#COUNTRY_ID= 99
#TRIGGER= 75
#DATE= 1916/10/01
;3-5% mobilization increase towards the Entente
#MOBILIZATION= [3,5] [2]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; 1st Line - France politically aligned with the Entente and not surrendered
#VARIABLE_CONDITION= 40 [2] [100] [0]
}

{
#NAME= Spain -> Entente (Discovery Of Anthrax At Cartagena) DE 605
#POPUP= <<TAG_21>>
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 0
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 605[1]
#COUNTRY_ID= 99
#TRIGGER= 75
#DATE= 1918/02/10
;3-5% mobilization increase towards the Entente
#MOBILIZATION= [3,5] [2]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
; 1st Line - France politically aligned with the Entente and not surrendered
#VARIABLE_CONDITION= 40 [2] [100] [0]
}

{
#NAME= USA->Entente (Preparedness Movement 1)
#POPUP= <<TAG_13>>
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 140[1]
#COUNTRY_ID= 115
#TRIGGER= 100
#DATE= 1914/08/01
;3-5% mobilization increase towards the Entente
#MOBILIZATION= [3,5] [2]
;Set variable conditions:
; 1st Line - UK politically aligned with the Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
}

{
#NAME= USA->Entente (Preparedness Movement 2)
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 2
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 140[1]
#COUNTRY_ID= 115
#TRIGGER= 100
#DATE= 1914/08/01
;1-2% mobilization increase towards the Entente
#MOBILIZATION= [1,2] [2]
;Set variable conditions:
; 1st Line - UK politically aligned with the Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
}

{
#NAME= USA->Entente (Preparedness Movement 3)
#POPUP= <<TAG_13>>
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 141[1]
#COUNTRY_ID= 115
#TRIGGER= 100
#DATE= 1914/08/01
;3-5% mobilization increase towards the Entente
#MOBILIZATION= [3,5] [2]
;Set variable conditions:
; 1st Line - UK politically aligned with the Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
}

{
#NAME= USA->Entente (Preparedness Movement 4)
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 2
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 141[1]
#COUNTRY_ID= 115
#TRIGGER= 100
#DATE= 1914/08/01
;1-2% mobilization increase towards the Entente
#MOBILIZATION= [1,2] [2]
;Set variable conditions:
; 1st Line - UK politically aligned with the Entente and not surrendered
#VARIABLE_CONDITION= 112 [2] [100] [0]
}

{
#NAME= USA->Entente (Zimmermann Telegram)
#POPUP= <<TAG_14>>
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 7[1,75]
;Set link value to always trigger (dummy value)
#LINK= 506[1]
#COUNTRY_ID= 115
#TRIGGER= 100
#DATE= 1914/08/01
;100-100% mobilization increase towards the Entente
#MOBILIZATION= [100,100] [2]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= USA->Entente (Zimmermann Telegram)
#POPUP= <<TAG_15>>
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 7[76,85]
;Set link value to always trigger (dummy value)
#LINK= 506[1]
#COUNTRY_ID= 115
#TRIGGER= 100
#DATE= 1914/08/01
;30-50% mobilization increase towards the Entente
#MOBILIZATION= [30,50] [2]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= USA->Central Powers (Zimmermann Telegram)
#POPUP= <<TAG_16>>
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 7[86,100]
;Set link value to always trigger (dummy value)
#LINK= 506[1]
#COUNTRY_ID= 115
#TRIGGER= 100
#DATE= 1914/08/01
;20-30% mobilization increase towards the Central Powers
#MOBILIZATION= [20,30] [1]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= UK->Entente (1914)
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 2
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#COUNTRY_ID= 112
#TRIGGER= 100
#DATE= 1914/08/01
;1-3% mobilization increase towards the Entente
#MOBILIZATION= [1,3] [2]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= USA->Entente (Russia pulls out of the war)
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 2
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#COUNTRY_ID= 115
#TRIGGER= 50
#DATE= 1916/01/01
;1-2% mobilization increase towards the Entente
#MOBILIZATION= [1,2] [2]
;Set variable conditions:
; 1st Line - Russia politically aligned with the Entente but not fully mobilized
#VARIABLE_CONDITION= 97 [2] [0] [0]
}

{
#NAME= USA->Entente (Russia surrenders)
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 2
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#COUNTRY_ID= 115
#TRIGGER= 50
#DATE= 1916/01/01
;1-2% mobilization increase towards the Entente
#MOBILIZATION= [1,2] [2]
;Set variable conditions:
; 1st Line - Russia politically aligned with the Entente and surrendered
#VARIABLE_CONDITION= 97 [2] [100] [1]
}

{
#NAME= USA->Entente (1917)
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 2
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#COUNTRY_ID= 115
#TRIGGER= 50
#DATE= 1917/06/01
;1-2% mobilization increase towards the Entente
#MOBILIZATION= [1,2] [2]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= Finland->Entente
#POPUP= <<TAG_17>>
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 14[1]
#COUNTRY_ID= 39
#TRIGGER= 100
#DATE= 1914/08/01
;5-5% mobilization increase towards the Entente
#MOBILIZATION= [5,5] [2]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= Finland->Central Powers
#POPUP= <<TAG_18>>
#IMAGE= Von_Der_Goltz1.png, Von_Der_Goltz2.png, BalticDetachment.png
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 622[1]
#COUNTRY_ID= 39
#TRIGGER= 100
#DATE= 1914/08/01
;45-45% mobilization increase towards the Central Powers
#MOBILIZATION= [45,45] [1]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= Finland->Entente
#POPUP= <<TAG_19>>
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 622[0]
#COUNTRY_ID= 39
#TRIGGER= 35
#DATE= 1914/08/01
;35-35% mobilization increase towards the Entente
#MOBILIZATION= [35,35] [2]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= Ukraine->Central Powers
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#COUNTRY_ID= 113
#TRIGGER= 100
#DATE= 1914/08/01
;60-60% mobilization increase towards the Central Powers
#MOBILIZATION= [60,60] [1]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= Latvia->Central Powers
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#COUNTRY_ID= 61
#TRIGGER= 100
#DATE= 1914/08/01
;60-60% mobilization increase towards the Central Powers
#MOBILIZATION= [60,60] [1]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= Lithuania->Central Powers
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#COUNTRY_ID= 64
#TRIGGER= 100
#DATE= 1914/08/01
;60-60% mobilization increase towards the Central Powers
#MOBILIZATION= [60,60] [1]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= Estonia->Central Powers
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 0[0]
#COUNTRY_ID= 38
#TRIGGER= 100
#DATE= 1914/08/01
;60-60% mobilization increase towards the Central Powers
#MOBILIZATION= [60,60] [1]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= Yugoslavia->Entente
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 2
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 27[1]
#COUNTRY_ID= 120
#TRIGGER= 100
#DATE= 1914/08/01
;33-50% mobilization increase towards the Entente
#MOBILIZATION= [33,50] [2]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= Czechoslovakia->Entente
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 2
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 27[1]
#COUNTRY_ID= 30
#TRIGGER= 100
#DATE= 1914/08/01
;33-50% mobilization increase towards the Entente
#MOBILIZATION= [33,50] [2]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= Hungary->Entente
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 2
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 27[1]
#COUNTRY_ID= 52
#TRIGGER= 100
#DATE= 1914/08/01
;33-50% mobilization increase towards the Entente
#MOBILIZATION= [33,50] [2]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

{
#NAME= Poland->Entente
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 2
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 27[1]
#COUNTRY_ID= 85
#TRIGGER= 100
#DATE= 1914/08/01
;33-50% mobilization increase towards the Entente
#MOBILIZATION= [33,50] [2]
;Set variable conditions:
; 1st Line - Germany politically aligned with the Central Powers and not surrendered
#VARIABLE_CONDITION= 45 [1] [100] [0]
}

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; SPECIAL EVENT
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
{
#NAME= Ottoman Empire->Entente (post surrender)
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 110[1]
#COUNTRY_ID= 111
#TRIGGER= 100
#DATE= 1915/09/01
;100-100% mobilization increase towards the Entente
#MOBILIZATION= [100,100] [2]
;Set variable conditions:
; 1st Line - Ottoman Empire politically aligned with the Central Powers but not fully mobilized
#VARIABLE_CONDITION= 111 [1] [0] [0]
}

{
#NAME= Ottoman Empire->Entente (post surrender)
#POPUP= 
#IMAGE= 
#SOUND= 
#FLAG= 1
#TYPE= 1
#AI= 0
#LEVEL= 0
;Set global variable condition to always trigger (dummy value)
#GV= 1[1,100]
;Set link value to always trigger (dummy value)
#LINK= 110[0]
#COUNTRY_ID= 111
#TRIGGER= 100
#DATE= 1915/09/01
;100-100% mobilization increase towards the Entente
#MOBILIZATION= [100,100] [2]
;Set variable conditions:
; 1st Line - Ottoman Empire politically aligned with the Central Powers but not fully mobilized
#VARIABLE_CONDITION= 111 [1] [0] [0]
}





